home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / share / tix4.1 / pref / Makefile < prev    next >
Encoding:
Makefile  |  1998-12-04  |  754 b   |  46 lines

  1. # WARNING
  2. #
  3. # This Makefile is NOT for installation purposes. Please read the file
  4. # docs/Install.html for information about installing Tix.
  5. #
  6. #
  7. #
  8. #
  9. #
  10. #
  11. # fs = font scheme source 
  12. # cs = color scheme source 
  13. #
  14. # fsc = font scheme compiled
  15. # csc = color scheme compiled
  16. #
  17.  
  18.  
  19. .SUFFIXES: .fs .cs .csc .fsc
  20.  
  21. all:: FONT_PREF COLOR_PREF
  22.  
  23. FONT_SRC = 14Point.fs 12Point.fs TK.fs 
  24.  
  25. FONT_PREF:: ${FONT_SRC:.fs=.fsc}
  26.  
  27. COLOR_SRC = Bisque.cs Blue.cs Gray.cs SGIGray.cs TixGray.cs TK.cs
  28.  
  29. COLOR_PREF:: ${COLOR_SRC:.cs=.csc}
  30.  
  31. fresh::
  32.     -rm -f ${COLOR_SRC:.cs=.csc} FONT_PREF:: ${FONT_SRC:.fs=.fsc}
  33.     make
  34.  
  35. .cs.csc:
  36.     tixmkpref -color $< > $@
  37.  
  38. .fs.fsc:
  39.     tixmkpref -font  $< > $@
  40.  
  41. distclean:
  42.     - rm -f *.a *.o core errs *~ \#* TAGS *.E a.out errors \
  43.         *.ps
  44.  
  45. clean:: distclean
  46.